home *** CD-ROM | disk | FTP | other *** search
- /*
- File: UApplicationSecondStomach.h
-
- Contains: Second Stomach Application
-
- Written by: Steve Datnow
-
- Copyright: © 1992 by Apple Computer, Inc., all rights reserved.
-
- Change History:
-
- 1/7/92 SLD Created
-
- To Do:
- */
-
- #ifndef __UAPPLICATIONSecondStomach__
- #define __UAPPLICATIONSecondStomach__
-
- #ifndef __UAPPLICATION__
- #include <UApplication.h>
- #endif
-
- //----------------------------------------------------------------------------------------
- // TApplicationSecondStomach
- //----------------------------------------------------------------------------------------
-
- class TApplicationSecondStomach : public TApplication
- {
- public:
-
- // Construction/Destruction
- virtual pascal void IApplicationSecondStomach();
-
- // Documents
- virtual pascal TDocument* DoMakeDocument(CommandNumber itsCommandNumber, TFile* itsFile ); // Override
-
- // Commands
- virtual pascal void DoSetupMenus(); // Override
- virtual pascal void DoMenuCommand(CommandNumber aCommandNumber); // Override
-
- virtual pascal void DoAppleCommand(CommandNumber aCommandNumber,
- const AppleEvent& message,
- const AppleEvent& reply);
- private:
-
- long fUniqueSessionID;
- };
-
- #endif
-